home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmOptions
- BorderStyle = 1 'Fixed Single
- Caption = "ActiveZipper Pro Options"
- ClientHeight = 2910
- ClientLeft = 45
- ClientTop = 330
- ClientWidth = 4575
- BeginProperty Font
- Name = "Tahoma"
- Size = 8.25
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Icon = "frmOptions.frx":0000
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 2910
- ScaleWidth = 4575
- StartUpPosition = 3 'Windows Default
- Begin VB.Frame Frame1
- Caption = "Extraction Options"
- BeginProperty Font
- Name = "Tahoma"
- Size = 8.25
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 735
- Index = 1
- Left = 0
- TabIndex = 11
- Top = 1680
- Width = 4575
- Begin VB.ComboBox Combo2
- Height = 315
- Left = 2760
- Style = 2 'Dropdown List
- TabIndex = 13
- Top = 240
- Width = 1575
- End
- Begin VB.CheckBox RunFile
- Caption = "Run File after extraction?"
- Height = 375
- Left = 120
- TabIndex = 12
- Top = 240
- Width = 1335
- End
- Begin VB.Label Label4
- Caption = "Window State:"
- Height = 255
- Left = 1680
- TabIndex = 14
- Top = 240
- Width = 1095
- End
- End
- Begin VB.CommandButton Command1
- Caption = "&Cancel"
- Height = 375
- Index = 1
- Left = 3480
- TabIndex = 10
- Top = 2520
- Width = 1095
- End
- Begin VB.CommandButton Command1
- Caption = "&OK"
- Height = 375
- Index = 0
- Left = 2280
- TabIndex = 9
- Top = 2520
- Width = 1095
- End
- Begin VB.Frame Frame1
- Caption = "Archive Options"
- BeginProperty Font
- Name = "Tahoma"
- Size = 8.25
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 1575
- Index = 0
- Left = 0
- TabIndex = 0
- Top = 0
- Width = 4575
- Begin VB.TextBox CLevel
- Height = 285
- Left = 1560
- TabIndex = 7
- Text = "2000"
- Top = 1200
- Width = 495
- End
- Begin VB.ComboBox Combo1
- Height = 315
- Left = 2520
- Style = 2 'Dropdown List
- TabIndex = 5
- Top = 600
- Width = 1200
- End
- Begin VB.TextBox DDrive
- Height = 285
- Left = 3480
- TabIndex = 3
- Text = "A:\"
- Top = 240
- Width = 375
- End
- Begin VB.CheckBox CopyArc
- Caption = "Copy Split Files to:"
- Height = 255
- Left = 1800
- TabIndex = 2
- Top = 240
- Width = 1695
- End
- Begin VB.CheckBox Encrypt
- Caption = "Encrypt (32bit encryption)"
- Height = 375
- Left = 120
- TabIndex = 1
- Top = 240
- Width = 1335
- End
- Begin VB.Label Label3
- Caption = "Enter values between 256 and 3065"
- Height = 375
- Left = 2160
- TabIndex = 8
- Top = 1080
- Width = 2295
- End
- Begin VB.Label Label2
- Caption = "Compression Level:"
- Height = 195
- Left = 120
- TabIndex = 6
- Top = 1200
- Width = 1440
- End
- Begin VB.Label Label1
- Caption = "Disk size:"
- Height = 255
- Left = 1800
- TabIndex = 4
- Top = 720
- Width = 735
- End
- End
- Attribute VB_Name = "frmOptions"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Command1_Click(Index As Integer)
- Select Case Index
- Case 0
- Dim i As Integer
- i = Combo1.ListIndex
- frmAZPCoDec.ActiveZipperPro1.CopyFiles = CopyArc.Value
- frmAZPCoDec.ActiveZipperPro1.Garble = Encrypt.Value
- frmAZPCoDec.ActiveZipperPro1.DiskDrive = DDrive.Text
- frmAZPCoDec.ActiveZipperPro1.DiskSize = Combo1.List(i)
- frmAZPCoDec.ActiveZipperPro1.Level = CLevel.Text
- RFile = RunFile.Value
- WState = Combo2.ListIndex
- Unload Me
- Case 1
- Unload Me
- End Select
- End Sub
- Private Sub Form_Load()
- Combo1.AddItem "1.4"
- Combo1.AddItem "1.2"
- Combo1.AddItem "720"
- Combo1.AddItem "360"
- Combo1.ListIndex = 3
- Combo2.AddItem "0"
- Combo2.AddItem "1"
- Combo2.AddItem "2"
- Combo1.ListIndex = 1
- Combo2.ListIndex = 1
- CopyArc.Value = CInt(frmAZPCoDec.ActiveZipperPro1.CopyFiles)
- If frmAZPCoDec.ActiveZipperPro1.Garble = True Then
- Encrypt.Value = 1
- Encrypt.Value = 0
- End If
- DDrive.Text = frmAZPCoDec.ActiveZipperPro1.DiskDrive
- CLevel.Text = frmAZPCoDec.ActiveZipperPro1.Level
- End Sub
-